Giter Club home page Giter Club logo

electron's Introduction


Task management in markdown and code. The way it should be.

imdone screenshot

Imdone is a simple and powerful kanban board for people who work with markdown and code. Blocks of markdown in your notes, docs and code are represented as cards on your kanban boards. You can add and edit cards using the built in card editor or your favorite text/markdown editor, making it very convenient to update your tasks while you’re working on a markdown document or code.

Visit imdone.io or read the docs to get started using imdone today!

Issues and Feature requests

This repo is intended for imdone users to report bugs and submit feature requests. Click on the Issues tab to get started.

electron's People

Contributors

alespergl avatar alexeykuzmin avatar anaisbetts avatar aroben avatar bbondy avatar brenca avatar charliehess avatar codebytere avatar deepak1556 avatar electron-bot avatar felixrieseberg avatar gerhardberger avatar hokein avatar jlord avatar joshaber avatar juturu avatar kevinsawicki avatar mafintosh avatar marshallofsound avatar max-mapper avatar miniak avatar oukan avatar poiru avatar preco21 avatar seanchas116 avatar tarruda avatar tinydew4 avatar vanessayuenn avatar zcbenz avatar zeke avatar

Watchers

 avatar  avatar  avatar

electron's Issues

(sandersd): Distinguish these from those that are directly supported,

Issue opened with imdone.io from code comment on 30abdbc


// TODO(sandersd): Distinguish these from those that are directly supported,
// as those may offer a higher level of protection.
supported_codecs |= media::EME_CODEC_WEBM_OPUS;
supported_codecs |= media::EME_CODEC_WEBM_VORBIS;
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
supported_codecs |= media::EME_CODEC_MP4_AAC;

(kevinsawicki): Remove in 2.0, deprecate before then with warnings

Issue opened with imdone.io from code comment on 30abdbc


// TODO(kevinsawicki): Remove in 2.0, deprecate before then with warnings
dict.SetMethod("readRtf", &atom::api::Clipboard::ReadRtf);
dict.SetMethod("writeRtf", &atom::api::Clipboard::WriteRtf);
dict.SetMethod("readHtml", &atom::api::Clipboard::ReadHtml);
dict.SetMethod("writeHtml", &atom::api::Clipboard::WriteHtml);
}

This final delete does not work if the source bundle is in a network mounted volume.

Issue opened with imdone.io from code comment on 30abdbc


// NOTE: This final delete does not work if the source bundle is in a network mounted volume.
// Calling rm or file manager's delete method doesn't work either. It's unlikely to happen
// but it'd be great if someone could fix this.
if (diskImageDevice == nil && !DeleteOrTrash(bundlePath)) {
// Could not delete original but we just don't care
}

([email protected]): Is SIGKILL ok?

Issue opened with imdone.io from code comment on 30abdbc


// TODO([email protected]): Is SIGKILL ok?
int rv = kill(static_cast<base::ProcessHandle>(pid), SIGKILL);
// ESRCH = No Such Process (can happen if the other process is already in
// progress of shutting down and finishes before we try to kill it).
DCHECK(rv == 0 || errno == ESRCH) << "Error killing process: "
<< base::safe_strerror(errno);

(gaochun): Replace the global variable g_browser_process with

Issue opened with imdone.io from code comment on 30abdbc


// TODO(gaochun): Replace the global variable g_browser_process with
// GetContentClient()->browser() to eliminate the dependency of browser
// once TTS implementation was moved to content.
utterance->set_lang(g_browser_process->GetApplicationLocale());
index = GetMatchingVoice(utterance, voices);

Remove once https://github.com/electron/electron/issues/6828 is fixed

Issue opened with imdone.io from code comment on 30abdbc


// FIXME Remove once https://github.com/electron/electron/issues/6828 is fixed
guest.on('dom-ready', function () {
const guestInstance = guestInstances[guestInstanceId]
if (guestInstance != null && guestInstance.visibilityState != null) {
guest.send('ELECTRON_GUEST_INSTANCE_VISIBILITY_CHANGE', guestInstance.visibilityState)
}

(zcbenz): This was used to force using native frame on Windows 2003,

Issue opened with imdone.io from code comment on 30abdbc


// TODO(zcbenz): This was used to force using native frame on Windows 2003,
// we should check whether setting it in InitParams can work.
window_->set_frame_type(views::Widget::FrameType::FRAME_TYPE_FORCE_NATIVE);
window_->FrameTypeChanged();
#if defined(OS_WIN)
// thickFrame also works for normal window.

(thestig): See above comment. SetNestableTasksAllowed(false) needs to

Issue opened with imdone.io from code comment on 30abdbc


// TODO(thestig): See above comment. SetNestableTasksAllowed(false) needs to
// be called on the same thread as the previous call. See
// http://crbug.com/73466
// MessageLoop::current()->SetNestableTasksAllowed(false);
// We can't use OnFailure() here since owner_ may not support notifications.

(deepak1556): Generate strings from components/pdf_strings.grdp.

Issue opened with imdone.io from code comment on 30abdbc


// TODO(deepak1556): Generate strings from components/pdf_strings.grdp.
#define SET_STRING(id, resource) result->SetString(id, resource)
SET_STRING("passwordPrompt",
"This document is password protected. Please enter a password.");
SET_STRING("passwordSubmit", "Submit");
SET_STRING("passwordInvalid", "Incorrect password");

(zcbenz): We should read "type" parameter for better design, but

Issue opened with imdone.io from code comment on 30abdbc


// FIXME(zcbenz): We should read "type" parameter for better design, but
// on Windows we have encountered a compiler bug that if we read "type"
// from |options| and then set |type_|, a memory corruption will happen
// and Electron will soon crash.
// Remvoe this after we upgraded to use VS 2015 Update 3.
bool b = false;

(viettrungluu,willchan): crbug.com/29675 - This currently leaks, so

Issue opened with imdone.io from code comment on 30abdbc


// TODO(viettrungluu,willchan): crbug.com/29675 - This currently leaks, so
// if you change this, you'll probably need to change the suppression.
if (!base::PlatformThread::CreateNonJoinable(
kShutdownDetectorThreadStackSize,
new ShutdownDetector(g_shutdown_pipe_read_fd))) {
LOG(DFATAL) << "Failed to create shutdown detector task.";

(erg): The mozilla implementation goes to a lot of callback trouble

Issue opened with imdone.io from code comment on 30abdbc


// TODO(erg): The mozilla implementation goes to a lot of callback trouble
// just to make sure that they react to make sure there's some sort of
// cancelable object; including making a whole callback just to handle the
// cancelable.
//
// I don't see any reason why we should care if "RegisterWindow" completes or

This process _must_ be sandboxed, otherwise the pdf dll will load

Issue opened with imdone.io from code comment on 30abdbc


// NOTE: This process _must_ be sandboxed, otherwise the pdf dll will load
// gdiplus.dll, change how rendering happens, and not be able to correctly
// generate when sent to a metafile DC.
utility_process_host_ = content::UtilityProcessHost::Create(
this, base::ThreadTaskRunnerHandle::Get())
->AsWeakPtr();

(dtseng): Notify extension caller of an error.

Issue opened with imdone.io from code comment on 30abdbc


// TODO(dtseng): Notify extension caller of an error.
utterance->set_voice_name("");
// TODO(gaochun): Replace the global variable g_browser_process with
// GetContentClient()->browser() to eliminate the dependency of browser
// once TTS implementation was moved to content.
utterance->set_lang(g_browser_process->GetApplicationLocale());

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.